home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PD Collection CD 1
/
PD Collection CD 1.iso
/
programer2
/
icon
/
Source
/
Icont
/
H
/
Lfile
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1990-07-20
|
248 b
|
11 lines
/*
* A linked list of files named by link declarations is maintained using
* lfile structures.
*/
struct lfile {
char *lf_name; /* name of the file */
struct lfile *lf_link; /* pointer to next file */
};
extern struct lfile *lfiles;